home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / ripply-anim.scm < prev    next >
Text File  |  2009-12-15  |  5KB  |  134 lines

  1. ; "Rippling Image" animation generator (ripply-anim.scm)
  2. ; Adam D. Moss (adam@foxbox.org)
  3. ; 97/05/18
  4. ;
  5. ; Designed to be used in conjunction with a plugin capable
  6. ; of saving animations (i.e. the GIF plugin).
  7. ;
  8.  
  9. (define (script-fu-ripply-anim img drawable displacement num-frames edge-type)
  10.  
  11.   (define (copy-layer-ripple dest-image dest-drawable source-image source-drawable)
  12.     (gimp-selection-all dest-image)
  13.     (gimp-edit-clear dest-drawable)
  14.     (gimp-selection-none dest-image)
  15.     (gimp-selection-all source-image)
  16.     (gimp-edit-copy source-drawable)
  17.     (gimp-selection-none source-image)
  18.     (let ((floating-sel (car (gimp-edit-paste dest-drawable FALSE))))
  19.       (gimp-floating-sel-anchor (car (gimp-edit-paste dest-drawable FALSE)))
  20.     )
  21.   )
  22.  
  23.   (let* (
  24.         (width (car (gimp-drawable-width drawable)))
  25.         (height (car (gimp-drawable-height drawable)))
  26.         (ripple-image (car (gimp-image-new width height GRAY)))
  27.         (ripple-layer (car (gimp-layer-new ripple-image width height GRAY-IMAGE "Ripple Texture" 100 NORMAL-MODE)))
  28.         (rippletiled-ret 0)
  29.         (rippletiled-image 0)
  30.         (rippletiled-layer 0)
  31.         (remaining-frames 0)
  32.         (xpos 0)
  33.         (ypos 0)
  34.         (xoffset 0)
  35.         (yoffset 0)
  36.         (dup-image 0)
  37.         (layer-name 0)
  38.         (this-image 0)
  39.         (this-layer 0)
  40.         (dup-layer 0)
  41.         )
  42.  
  43.     (gimp-context-push)
  44.  
  45.     ; this script generates its own displacement map
  46.  
  47.     (gimp-image-undo-disable ripple-image)
  48.     (gimp-context-set-background '(127 127 127))
  49.     (gimp-image-add-layer ripple-image ripple-layer 0)
  50.     (gimp-edit-fill ripple-layer BACKGROUND-FILL)
  51.     (plug-in-noisify RUN-NONINTERACTIVE ripple-image ripple-layer FALSE 1.0 1.0 1.0 0.0)
  52.     ; tile noise
  53.     (set! rippletiled-ret (plug-in-tile RUN-NONINTERACTIVE ripple-image ripple-layer (* width 3) (* height 3) TRUE))
  54.     (gimp-image-undo-enable ripple-image)
  55.     (gimp-image-delete ripple-image)
  56.  
  57.     (set! rippletiled-image (car rippletiled-ret))
  58.     (set! rippletiled-layer (cadr rippletiled-ret))
  59.     (gimp-image-undo-disable rippletiled-image)
  60.  
  61.     ; process tiled noise into usable displacement map
  62.     (plug-in-gauss-iir RUN-NONINTERACTIVE rippletiled-image rippletiled-layer 35 TRUE TRUE)
  63.     (gimp-equalize rippletiled-layer TRUE)
  64.     (plug-in-gauss-rle RUN-NONINTERACTIVE rippletiled-image rippletiled-layer 5 TRUE TRUE)
  65.     (gimp-equalize rippletiled-layer TRUE)
  66.  
  67.     ; displacement map is now in rippletiled-layer of rippletiled-image
  68.  
  69.     ; loop through the desired frames
  70.  
  71.     (set! remaining-frames num-frames)
  72.     (set! xpos (/ width 2))
  73.     (set! ypos (/ height 2))
  74.     (set! xoffset (/ width num-frames))
  75.     (set! yoffset (/ height num-frames))
  76.  
  77.     (let* ((out-imagestack (car (gimp-image-new width height RGB))))
  78.  
  79.     (gimp-image-undo-disable out-imagestack)
  80.  
  81.     (while (> remaining-frames 0)
  82.       (set! dup-image (car (gimp-image-duplicate rippletiled-image)))
  83.       (gimp-image-undo-disable dup-image)
  84.       (gimp-image-crop dup-image width height xpos ypos)
  85.  
  86.       (set! layer-name (string-append "Frame "
  87.                  (number->string (- num-frames remaining-frames) 10)
  88.                  " (replace)"))
  89.       (set! this-layer (car (gimp-layer-new out-imagestack
  90.                                             width height RGB
  91.                                             layer-name 100 NORMAL-MODE)))
  92.       (gimp-image-add-layer out-imagestack this-layer 0)
  93.  
  94.       (copy-layer-ripple out-imagestack this-layer img drawable)
  95.  
  96.       (set! dup-layer (car (gimp-image-get-active-layer dup-image)))
  97.       (plug-in-displace RUN-NONINTERACTIVE out-imagestack this-layer
  98.                         displacement displacement
  99.                         TRUE TRUE dup-layer dup-layer edge-type)
  100.  
  101.       (gimp-image-undo-enable dup-image)
  102.       (gimp-image-delete dup-image)
  103.  
  104.       (set! remaining-frames (- remaining-frames 1))
  105.       (set! xpos (+ xoffset xpos))
  106.       (set! ypos (+ yoffset ypos))
  107.     )
  108.  
  109.     (gimp-image-undo-enable rippletiled-image)
  110.     (gimp-image-delete rippletiled-image)
  111.     (gimp-image-undo-enable out-imagestack)
  112.     (gimp-display-new out-imagestack))
  113.  
  114.     (gimp-context-pop)
  115.   )
  116. )
  117.  
  118. (script-fu-register "script-fu-ripply-anim"
  119.   _"_Rippling..."
  120.   _"Create a multi-layer image by adding a ripple effect to the current image"
  121.   "Adam D. Moss (adam@foxbox.org)"
  122.   "Adam D. Moss"
  123.   "1997"
  124.   "RGB* GRAY*"
  125.   SF-IMAGE      "Image to animage"    0
  126.   SF-DRAWABLE   "Drawable to animate" 0
  127.   SF-ADJUSTMENT _"Rippling strength"  '(3 0 256 1 10 1 0)
  128.   SF-ADJUSTMENT _"Number of frames"   '(15 0 256 1 10 0 1)
  129.   SF-OPTION     _"Edge behavior"      '(_"Wrap" _"Smear" _"Black")
  130. )
  131.  
  132. (script-fu-menu-register "script-fu-ripply-anim"
  133.                          "<Image>/Filters/Animation/Animators")
  134.